home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_gen / sb402.zip / OPTIONS.INF < prev    next >
Text File  |  1996-03-28  |  908b  |  21 lines

  1. // Double click on this sample in file manager to run it
  2.  
  3. // Create the dialog
  4. CreateDialog("Options","Options", 40, 40, 260, 145)
  5. CreateControl("groupbox","",-1,6,4,247,110,0)
  6. CreateControl("icon","setup",-1,15,20,0,0,0)
  7. CreateControl("text","Please enter the directories in which to place the %Application% software files:",-1,50,20,170,24,0)
  8. CreateControl("RadioButton","Default Directories",20,30,50,100,12,0,%rb1%)
  9. CreateControl("RadioButton","Security Options",21,30,70,100,12,0,%rb2%)
  10. CreateControl("RadioButton","Network Options",22,30,90,100,12,0,%rb3%)
  11. CreateControl("RadioButton","Date/Time Options",23,140,50,100,12,0,%rb4%)
  12. CreateControl("RadioButton","Uninstall the Software",24,140,70,100,12,0,%rb5%)
  13. CreateControl("button","&Ok",IDOK,6,126,40,14,1)
  14. CreateControl("button","&Cancel",IDCANCEL,52,126,40,14,0)
  15. CentreDialog()
  16. SetFocus(20)
  17.  
  18. // Now run it
  19. DialogBox("Options")
  20.  
  21.